-- card: 38674 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4755 -- name: -- part contents for background part 4 ----- text ----- to call the Student::set() method. In order to override the method we must redeclare it in the definition of the Student class: struct Student:Person { int student_num; int init(void); /* override inherited init() method */ void set(void); void print(void); }; int Student::init(void) { set(); /* call Student's set() method */ return 1; } -- part contents for background part 7 ----- text ----- 117